aboutsummaryrefslogtreecommitdiff
path: root/src/pages/portfolio/[id].astro
diff options
context:
space:
mode:
authorAriel Costas Guerrero <ariel@costas.dev>2025-10-12 22:49:13 +0200
committerAriel Costas Guerrero <ariel@costas.dev>2025-10-12 22:49:13 +0200
commitcbdb2ee1547fcfbef8c874da60b17eee80b5fa18 (patch)
treef1adc98515c2ac7681dcd0902b9ebcc2997d6b73 /src/pages/portfolio/[id].astro
parentdcc806eff41da24ee6b5984d011f62bc9f4f00ee (diff)
Get rid of trajectory and portfolio
Diffstat (limited to 'src/pages/portfolio/[id].astro')
-rw-r--r--src/pages/portfolio/[id].astro17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/pages/portfolio/[id].astro b/src/pages/portfolio/[id].astro
deleted file mode 100644
index 7424b91..0000000
--- a/src/pages/portfolio/[id].astro
+++ /dev/null
@@ -1,17 +0,0 @@
----
-import type { GetStaticPaths } from "astro";
-import { getCollection } from "astro:content";
-import PortfolioSingleLayout from "@/layouts/PortfolioSingleLayout.astro";
-
-export const getStaticPaths: GetStaticPaths = async () => {
- const entries = await getCollection("portfolio");
- return entries.map((entry: any) => ({
- params: { id: entry.id },
- props: { entry },
- }));
-};
-
-const { entry } = Astro.props;
----
-
-<PortfolioSingleLayout entry={entry} />